home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Utilities / Programming / EnterAct 3.5 / Drag_on Modules / hAWK programs / $FileDates < prev    next >
Encoding:
Text File  |  1992-09-18  |  273 b   |  11 lines  |  [TEXT/KEEN]

  1. #$FileDates : print mod date of files
  2.  
  3. #Typically use the "MFS selected files" input option
  4. #with "Show stdout" selected.
  5.  
  6. BEGIN {
  7.     print "Full pathname • yr:mo:day:hr:min:sec"
  8.     for (i = 1; i < ARGC; ++i)#note ARGV[0] is just "hAWK"
  9.         print ARGV[i], "•", fdate(ARGV[i])
  10.     }
  11.